home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / a_utils / _archvrs / unix / comp430 / makefile.xen < prev    next >
Makefile  |  1990-01-17  |  664b  |  27 lines

  1. #
  2. # MAKE    FILE FOR XENIX systems on 80x86 machines/other platforms will have to
  3. # modify CFLAGS.
  4. # add -DALLOC if your system uses alloc() instead of malloc()
  5. # add -DNOSIGNAL for faster processing on a unix pc
  6. # add -DMAXSEG_64K if your compiler does NOT predefine M_I286 and you need
  7. #                to allow for segmented addressing
  8. #for 286 machines
  9. CFLAGS=-c -DXENIX -DNDEBUG -Ml2e
  10. OFLAGS=-Ml
  11. #for 386 machines
  12. #CFLAGS=-c -DXENIX -DNDEBUG -M3e
  13. #OFLAGS=-s
  14.  
  15. LIB=
  16. PROG=compress
  17. OBJ=compress.o compusi.o compapi.o
  18.  
  19. $(PROG): $(OBJ)
  20.     cc -o $(PROG) $(OFLAGS) $(OBJ) $(LIB)
  21.  
  22. compapi.o: compress.h
  23. compress.o: compress.h
  24. compusi.o: compress.h
  25.  
  26.  
  27.